home *** CD-ROM | disk | FTP | other *** search
- unit Mstrlst;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, Mcombbox, MultLang, Menus, StdCtrls;
-
- type
- TStrListDlg = class(TForm)
- Label1: TLabel;
- ListBox1: TListBox;
- ComboBox1: TComboBox;
- PopupMenu1: TPopupMenu;
- Apples1: TMenuItem;
- OrangeJuice1: TMenuItem;
- Lingonberry1: TMenuItem;
- Wildstrawberries1: TMenuItem;
- Label2: TLabel;
- MultLang1: TMultLang;
- procedure FormClose(Sender: TObject; var Action: TCloseAction);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- StrListDlg: TStrListDlg;
-
- implementation
-
- {$R *.DFM}
-
- procedure TStrListDlg.FormClose(Sender: TObject; var Action: TCloseAction);
- begin
- Action:=caFree;
- end;
-
- end.
-